home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlargv.z / dlargv
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAARRRRGGGGVVVV((((3333SSSS))))                                                          DDDDLLLLAAAARRRRGGGGVVVV((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLARGV - generate a vector of real plane rotations, determined by
  10.      elements of the real vectors x and y
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE DLARGV( N, X, INCX, Y, INCY, C, INCC )
  14.  
  15.          INTEGER        INCC, INCX, INCY, N
  16.  
  17.          DOUBLE         PRECISION C( * ), X( * ), Y( * )
  18.  
  19. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  20.      These routines are part of the SCSL Scientific Library and can be loaded
  21.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  22.      directs the linker to use the multi-processor version of the library.
  23.  
  24.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  25.      4 bytes (32 bits). Another version of SCSL is available in which integers
  26.      are 8 bytes (64 bits).  This version allows the user access to larger
  27.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  28.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  29.      only one of the two versions; 4-byte integer and 8-byte integer library
  30.      calls cannot be mixed.
  31.  
  32. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  33.      DLARGV generates a vector of real plane rotations, determined by elements
  34.      of the real vectors x and y. For i = 1,2,...,n
  35.         (  c(i)  s(i) ) ( x(i) ) = ( a(i) )
  36.         ( -s(i)  c(i) ) ( y(i) ) = (   0  )
  37.  
  38.  
  39. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  40.      N       (input) INTEGER
  41.              The number of plane rotations to be generated.
  42.  
  43.      X       (input/output) DOUBLE PRECISION array,
  44.              dimension (1+(N-1)*INCX) On entry, the vector x.  On exit, x(i)
  45.              is overwritten by a(i), for i = 1,...,n.
  46.  
  47.      INCX    (input) INTEGER
  48.              The increment between elements of X. INCX > 0.
  49.  
  50.      Y       (input/output) DOUBLE PRECISION array,
  51.              dimension (1+(N-1)*INCY) On entry, the vector y.  On exit, the
  52.              sines of the plane rotations.
  53.  
  54.      INCY    (input) INTEGER
  55.              The increment between elements of Y. INCY > 0.
  56.  
  57.      C       (output) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
  58.              The cosines of the plane rotations.
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAARRRRGGGGVVVV((((3333SSSS))))                                                          DDDDLLLLAAAARRRRGGGGVVVV((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      INCC    (input) INTEGER
  75.              The increment between elements of C. INCC > 0.
  76.  
  77. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  78.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  79.  
  80.      This man page is available only online.
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.